/* --- CSS Blindé pour la Side Bar de Lolo26DIR --- */

.social-sidebar {
    position: fixed !important; /* Reste collé à l'écran */
    top: 50% !important;
    left: 25px !important; /* Décollé du bord gauche */
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    z-index: 99999 !important; /* Passe au-dessus de la vidéo et du fond */
}

/* Chaque bloc de réseau */
.social-sidebar .social-item-v {
    display: flex !important;
    flex-direction: column !important; /* Icône en haut, chiffre en bas */
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    background: rgba(14, 17, 31, 0.85) !important; /* Fond sombre */
    backdrop-filter: blur(8px) !important;
    border-left: 4px solid #8A2BE2 !important; /* Ta ligne violette */
    padding: 10px 0 !important;
    
    /* Dimensions fixes pour éviter l'écrasement de l'image_28d265.png */
    width: 75px !important; 
    height: 75px !important;
    border-radius: 4px 12px 12px 4px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.25s ease-in-out !important;
}

/* Conteneur de l'icône SVG */
.social-sidebar .icon-container-v {
    width: 26px !important;
    height: 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 5px !important;
}

.social-sidebar .social-svg-v {
    width: 100% !important;
    height: 100% !important;
    fill: #ffffff !important; /* Icône blanche */
}

/* Le fameux compteur "0" */
.social-sidebar .counter {
    color: #8A2BE2 !important; /* Chiffre violet */
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    font-family: Arial, sans-serif !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

.social-sidebar .social-item-v:hover {
    transform: scale(1.08) translateX(5px) !important;
    background: rgba(20, 24, 43, 0.95) !important;
    border-left-color: #a855f7 !important;
}

.social-sidebar .social-item-v:hover .social-svg-v {
    filter: drop-shadow(0 0 6px currentColor) !important;
}

/* YouTube en rouge au survol */
.social-sidebar .social-item-v:nth-child(1):hover .social-svg-v { fill: #ff0000 !important; }

/* X (Twitter) en NOIR au survol */
.social-sidebar .social-item-v:nth-child(2):hover .social-svg-v { fill: #ffffff !important; }

/* Discord en bleu au survol */
.social-sidebar .social-item-v:nth-child(3):hover .social-svg-v { fill: #5865f2 !important; }

/* Twitch en violet au survol */
.social-sidebar .social-item-v:nth-child(4):hover .social-svg-v { fill: #9146FF !important; }